Beta: Get user information Beta

Gives various information that would help in debugging related to a particular user. Currently in beta, might undergo breaking changes without prior notice.

Tip: Refer to the Troubleshooting tutorial for more information.

SecurityBearerAuth
Request
path Parameters
datasource
required
string

The datasource to which the user belongs

Request Body schema: application/json; charset=UTF-8
required
email
required
string

Email ID of the user to get the status for

Responses
200

OK

Response Schema: application/json; charset=UTF-8
object (UserStatusResponse)

Describes the user status response body

Array of objects (DatasourceGroupDefinition)

List of groups the user is a member of, as uploaded via permissions API.

400

Bad Request

401

Not Authorized

post/debug/{datasource}/user
Request samples
application/json; charset=UTF-8
{
  • "email": "u1@foo.com"
}
Response samples
application/json; charset=UTF-8
{
  • "status": {
    • "isActiveUser": true,
    • "uploadStatus": "UPLOADED",
    • "lastUploadedAt": "2021-08-06T17:58:01.000Z"
    },
  • "uploadedGroups": [
    • {
      • "name": "string"
      }
    ]
}